home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- BackColor = &H00808080&
- Caption = "Thum ANI."
- ClientHeight = 1965
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 1890
- LinkTopic = "Form1"
- ScaleHeight = 131
- ScaleMode = 3 'Pixel
- ScaleWidth = 126
- StartUpPosition = 3 'Windows Default
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- '// Thumb Player thingy [Dont know a technical Description to give it]
- '// This just simply program that i need fixed cause it seems to have a problem with
- '// running only one time when in autorepeat mode and it will no longer work
- '// When It recives a Another Roll_film Activation. Needs some serious revision.
- '// Pretty handy hey and look no ocxs :)
- '// All OCX 'S and No Code = some one elses Program!
- '// For instance did you know your form already has scroll bars
- '// Did you know your form is also a TextBox & ListBox &cOmbobox
- '// Hehe and Cheakout the Project_To Value
- '// ill will Spice up the code a bit when i have some time.
- '// If you wish to employ me contact [Familea@Familea.Screaming.net]
- '// Thumb - Nail hehe what a name good one MS .....Doult
- Private thb1 As New Class1
- Private Sub Form_Click()
- thb1.Roll_Tape 0, 0
- End Sub
- Private Sub Form_Load()
- Set thb1.Ownerform = Form1
- thb1.Lens_Shape = Custom_
- thb1.Pos_Top = 1
- thb1.Pos_Height = 140
- thb1.Pos_Left = 1
- thb1.Pos_Width = Form1.ScaleWidth
- thb1.Thum_Height = 60 'The Actual Size of your Thumbnials,play with these when you use your own
- thb1.Thum_Width = 60 'The Actual Size of your thumbnails,play with these when you use your own
- thb1.Pic_ADD App.Path + "\" + "Tamc.gif"
- thb1.Scrolling = Horizontal
- thb1.ThumCount = 12
- thb1.ProjectTo = 0 'HDC for secondary projection otherwise it just projects to the Desktop
- 'See ProjectOn Value if you dont want to use this.
-
- thb1.ProjectOn = True
- thb1.AutoRepeat = True 'This is not working properly but it works once for some reason.
- thb1.Init_ImageData 'Load the Thumbnails that will be used
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- thb1.Unload_VCR
- End Sub
-